projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
39b62b3
)
* minibuf.c (Fread_minibuffer): Add missing semicolon after
author
Jim Blandy
<jimb@redhat.com>
Sat, 19 Jun 1993 21:06:18 +0000
(21:06 +0000)
committer
Jim Blandy
<jimb@redhat.com>
Sat, 19 Jun 1993 21:06:18 +0000
(21:06 +0000)
CHECK_STRING macro.
src/minibuf.c
patch
|
blob
|
history
diff --git
a/src/minibuf.c
b/src/minibuf.c
index f7043d8afa618a795e1ab219e7b72422e8ba1e5c..b57cf4c73f4e00275ac0faaf57c185c4e722c535 100644
(file)
--- a/
src/minibuf.c
+++ b/
src/minibuf.c
@@
-415,7
+415,7
@@
is a string to insert in the minibuffer before reading.")
{
CHECK_STRING (prompt, 0);
if (!NILP (initial_contents))
- CHECK_STRING (initial_contents, 1)
+ CHECK_STRING (initial_contents, 1)
;
return read_minibuf (Vminibuffer_local_map, initial_contents,
prompt, Qnil, 1, Qminibuffer_history, make_number (0));
}